diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index 58576cad..aa66ad03 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8306,7 +8306,7 @@ -1307815721 /home/mark/projects/git/sleepyhead/src/version.h +1307816862 /home/mark/projects/git/sleepyhead/src/version.h 1307627540 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h "machine.h" @@ -8344,7 +8344,7 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1307815384 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1307816469 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index 082980d6..3537157e 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -240,7 +240,7 @@ END_EVENT_TABLE() static int wx_gl_attribs[] = {WX_GL_RGBA, WX_GL_DOUBLEBUFFER, WX_GL_DEPTH_SIZE, 24, 0}; gGraphWindow::gGraphWindow() -: wxGLCanvas( NULL,wxID_ANY,NULL ) +: wxGLCanvas( (wxWindow *)NULL,(wxGLContext *)NULL,wxID_ANY) //,wxDefaultPosition,wxDefaultSize,wxT("GLContext"),(int *)wx_gl_attribs,wxNullPalette) { } @@ -793,7 +793,11 @@ void gGraphWindow::OnPaint(wxPaintEvent& event) //#endif GetClientSize(&m_scrX, &m_scrY); +#if !defined(__WXMAC__) gl_context->SetCurrent(*this); // A generic Context needs to be used.. Not one per graph window +#else + gl_context->SetCurrent(); +#endif glViewport(0, 0, m_scrX, m_scrY); glMatrixMode(GL_PROJECTION); diff --git a/src/version.h b/src/version.h index 9d5b043c..b29e59bf 100644 --- a/src/version.h +++ b/src/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 5000; - static const long REVISION = 10593; + static const long BUILD = 5007; + static const long REVISION = 10634; //Miscellaneous Version Types - static const long BUILDS_COUNT = 4402; - #define RC_FILEVERSION 0,7,5000,10593 - #define RC_FILEVERSION_STRING "0, 7, 5000, 10593\0" - static const char FULLVERSION_STRING[] = "0.7.5000.10593"; + static const long BUILDS_COUNT = 4412; + #define RC_FILEVERSION 0,7,5007,10634 + #define RC_FILEVERSION_STRING "0, 7, 5007, 10634\0" + static const char FULLVERSION_STRING[] = "0.7.5007.10634"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;