mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
parent
3ea8f81c7c
commit
367a345ef9
@ -8306,7 +8306,7 @@
|
||||
<sleeplib/machine.h>
|
||||
<list>
|
||||
|
||||
1308026543 /home/mark/projects/git/sleepyhead/src/version.h
|
||||
1308028613 /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"
|
||||
|
||||
1308010945 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp
|
||||
1308028182 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp
|
||||
<OpenGL/gl.h>
|
||||
<AGL/agl.h>
|
||||
<GL/glew.h>
|
||||
|
@ -1716,7 +1716,7 @@ void gCandleStick::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
if (m_direction==wxVERTICAL) {
|
||||
DrawText(str,start_px+barwidth+2+y,j,270.0,*wxBLACK);
|
||||
} else {
|
||||
DrawText(str,j,start_py+(barwidth/2)-(y/2)+4); //0,*wxBLACK,texfont);
|
||||
DrawText(str,j,start_py+(barwidth/2)-(y/2)+1);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -145,7 +145,7 @@ int TextureFont::CacheGlyphs(wchar_t * charcodes)
|
||||
for( x=0; x<slot->bitmap.width; ++x ) {
|
||||
for( y=0; y<slot->bitmap.rows; ++y ){
|
||||
c = *(unsigned char *)(slot->bitmap.buffer + y*slot->bitmap.pitch + x );
|
||||
c = (unsigned char) ( pow((float)c/255.0, (float)m_gamma) * 255);
|
||||
c = (unsigned char) ( pow(float(c)/255.0, float(m_gamma) * 255.0));
|
||||
*(unsigned char *)(slot->bitmap.buffer + y*slot->bitmap.pitch + x ) = c;
|
||||
}
|
||||
}
|
||||
|
@ -16,14 +16,14 @@ namespace AutoVersion{
|
||||
//Standard Version Type
|
||||
static const long MAJOR = 0;
|
||||
static const long MINOR = 7;
|
||||
static const long BUILD = 5641;
|
||||
static const long REVISION = 14124;
|
||||
static const long BUILD = 5642;
|
||||
static const long REVISION = 14132;
|
||||
|
||||
//Miscellaneous Version Types
|
||||
static const long BUILDS_COUNT = 5845;
|
||||
#define RC_FILEVERSION 0,7,5641,14124
|
||||
#define RC_FILEVERSION_STRING "0, 7, 5641, 14124\0"
|
||||
static const char FULLVERSION_STRING[] = "0.7.5641.14124";
|
||||
static const long BUILDS_COUNT = 5853;
|
||||
#define RC_FILEVERSION 0,7,5642,14132
|
||||
#define RC_FILEVERSION_STRING "0, 7, 5642, 14132\0"
|
||||
static const char FULLVERSION_STRING[] = "0.7.5642.14132";
|
||||
|
||||
//These values are to keep track of your versioning state, don't modify them.
|
||||
static const long BUILD_HISTORY = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user