-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup more use of the "long" data type. #1012
Cleanup more use of the "long" data type. #1012
Conversation
85cf624
to
478737f
Compare
There are changes which seems to have been done by mistake automatically by your text editor. |
478737f
to
0fbf032
Compare
Should all be cleaned up now. |
Aw man, that stupid utf conversion :D |
3c91025
to
b477720
Compare
Okay, really should be cleaned up this time @giulianobelinassi |
b477720
to
dcd7303
Compare
redalert/conquer.cpp
Outdated
@@ -4257,7 +4257,7 @@ bool Force_CD_Available(int cd) | |||
#endif | |||
|
|||
#ifdef FRENCH | |||
sprintf(buffer, "Ins�rez le %s", _cd_name[cd]); | |||
sprintf(buffer, "Ins�rez le %s", _cd_name[cd]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mistake change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these are actually fixing a change that went through incorrectly previously.
redalert/conquer.cpp
Outdated
@@ -4268,7 +4268,7 @@ bool Force_CD_Available(int cd) | |||
} else { | |||
#ifdef DVD | |||
#ifdef FRENCH | |||
sprintf(buffer, "Ins�rez le %s", _cd_name[4]); | |||
sprintf(buffer, "Ins�rez le %s", _cd_name[4]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mistake change
This datatype varies in length between platforms so its use is not portable.
dcd7303
to
df1760b
Compare
This datatype varies in length between platforms so its use is not portable.