Okay, the problem is that render.cpp's svn properties say that it is a binary file, so my changes aren't showing up in a diff performed via "svn diff". This patch
also needs to be applied:
Code: Select all
--- src/render.cpp 2006-09-04 22:09:26.000000000 -0500
+++ src/render.cpp.old 2006-09-06 22:39:40.939388600 -0500
@@ -1231,7 +1231,7 @@
if (messages_3d[a].fade < 255)
al = messages_3d[a].fade;
- draw_text_scale(0, a*(10*render_text_scale), rgba_t(255, 255, 255, al), 0, render_text_scale, chr(messages_3d[a].message));
+ draw_text_scale(0, a*(10*render_text_scale), rgba_t(255, 255, 255, al), 0, render_text_scale, messages_3d[a].message.c_str());
messages_3d[a].fade -= 7;
}
Slayer, you need to fix the properties on the file. I think running this from inside the slade/slade_20_alpha/ directory should work:
Code: Select all
svn propdel svn:mime-type src/render.cpp
Hopefully, that should fix its properties when you check in the next revision. If not, you might have to operate directly on the svn repository.