0

ported spawn render mode to C

This commit is contained in:
Aaron Griffith
2011-03-23 02:31:09 -04:00
parent 69bb56dcb4
commit ccddba2d81
5 changed files with 143 additions and 3 deletions

View File

@@ -29,6 +29,8 @@ RenderModeInterface *get_render_mode(RenderState *state) {
iface = &rendermode_lighting;
} else if (strcmp(rendermode, "night") == 0) {
iface = &rendermode_night;
} else if (strcmp(rendermode, "spawn") == 0) {
iface = &rendermode_spawn;
}
Py_DECREF(rendermode_py);