Skip to content
Snippets Groups Projects
Commit 267c343a authored by dg's avatar dg
Browse files

fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@3176 51575b47-30f0-44d4-a5cc-537603b46e54
parent d2891f77
No related branches found
No related tags found
No related merge requests found
......@@ -57,9 +57,9 @@ project "TEngine"
defines { [[TENGINE_HOME_PATH='".t-engine"']], 'SELFEXE_LINUX' }
configuration {"Debug"}
postbuildcommands { "cp ../bin/Debug/"..corename.."* ../game/engines/cores/", }
postbuildcommands { "cp ../bin/Debug/t-engine ../", }
configuration {"Release"}
postbuildcommands { "cp ../bin/Release/"..corename.."* ../game/engines/cores/", }
postbuildcommands { "cp ../bin/Release/t-engine ../", }
----------------------------------------------------------------
......
......@@ -839,6 +839,11 @@ int main(int argc, char *argv[])
for (i = 1; i < argc; i++)
{
char *arg = argv[i];
if (!strncmp(arg, "-M", 2)) core_def->reboot_module = strdup(arg+2);
if (!strncmp(arg, "-u", 2)) core_def->reboot_name = strdup(arg+2);
if (!strncmp(arg, "-E", 2)) core_def->reboot_einfo = strdup(arg+2);
if (!strncmp(arg, "-n", 2)) core_def->reboot_new = 1;
if (!strncmp(arg, "--flush-stdout", 14)) setvbuf(stdout, (char *) NULL, _IOLBF, 0);;
if (!strncmp(arg, "--no-debug", 10)) no_debug = 0;
}
......
......@@ -1341,9 +1341,9 @@ static int minimap_to_screen(lua_State *L)
{
r = mo->mm_r * 0.6; g = mo->mm_g * 0.6; b = mo->mm_b * 0.6; a = transp * 0.6;
}
mm[ptr] = r * 255;
mm[ptr] = b * 255;
mm[ptr+1] = g * 255;
mm[ptr+2] = b * 255;
mm[ptr+2] = r * 255;
mm[ptr+3] = a * 255;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment