Fixed errors

Changed bit depth
This commit is contained in:
andreja6
2018-04-19 00:15:16 -07:00
parent 1bb0c6eb6f
commit acbe509c05
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 484 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 792 B

View File

@@ -313,7 +313,7 @@ void Demo::onUserInput(UserInput* ui) {
if(ui->keyPressed('v'))
{
messageTime = System::time();
message = convert(getOSVersion());
message = Convert(getOSVersion());
}
}
if(ui->keyPressed(SDLK_F8))
@@ -600,7 +600,7 @@ int main(int argc, char** argv) {
//settings.useNetwork = false;
//settings.window.width = 1024;
//settings.window.height = 768;
if(getOSVersion > 5.0)
if(getOSVersion() > 5.0)
settings.window.defaultIconFilename = GetFileInPath("/content/images/rico.png");
else
settings.window.defaultIconFilename = GetFileInPath("/content/images/rico256c.png");