shithub: cstory

Download patch

ref: acdf8aa622c56b4f939b964dda974e725be4db3d
parent: b734bed63f7db53fdd34ee78f6899e1dcad821b8
author: Clownacy <[email protected]>
date: Fri Jan 25 06:20:44 EST 2019

Fixed some mistakes Cppcheck pointed out

--- a/src/Draw.cpp
+++ b/src/Draw.cpp
@@ -316,7 +316,7 @@
 	//Target surface
 	if (!surf[to].texture)
 	{
-		printf("Tried to draw to surface %s, which doesn't exist\n", to);
+		printf("Tried to draw to surface %d, which doesn't exist\n", to);
 		return;
 	}
 	
@@ -350,7 +350,7 @@
 	//Target surface
 	if (!surf[surf_no].texture)
 	{
-		printf("Tried to draw a rectangle to surface %s, which doesn't exist\n", surf_no);
+		printf("Tried to draw a rectangle to surface %d, which doesn't exist\n", surf_no);
 		return;
 	}
 	
--- a/src/Ending.cpp
+++ b/src/Ending.cpp
@@ -123,7 +123,7 @@
 void ReloadIllust(int a)
 {
 	char name[16];
-	sprintf(name, "CREDIT%02ld", a);
+	sprintf(name, "CREDIT%02d", a);
 	ReloadBitmap_Resource(name, SURFACE_ID_CREDITS_IMAGE);
 }
 
--- a/src/Sound.cpp
+++ b/src/Sound.cpp
@@ -31,6 +31,7 @@
 	
 	playing = false;
 	looping = false;
+	looped = false;
 	
 	frequency = 0.0;
 	volume = 1.0;
@@ -274,7 +275,7 @@
 	uint8_t *buf = nullptr;
 	size_t len;
 		
-	for (size_t n = 0; n < SOUND_NO; n++)
+	for (unsigned int n = 0; n < SOUND_NO; n++)
 	{
 		sprintf(path, "%2.2X.pxt", n);