just that small micro-optimisation suggested

This commit is contained in:
Matheus Lessa 2017-10-17 15:48:25 -02:00
parent b32ea8afbe
commit dfa500f366
1 changed files with 1 additions and 1 deletions

View File

@ -2318,7 +2318,7 @@ static void tryReloadCode(Console* console, char* codeBuffer)
static void cmdInjectCode(Console* console, const char* param, const char* name)
{
bool watch = strcmp(param, "-code-watch") == 0;
if(strcmp(param, "-code") == 0 || watch)
if(watch || strcmp(param, "-code") == 0)
{
bool loaded = loadFileIntoBuffer(console, &embed.file.code.data, name);