Преглед изворни кода

* NDS: fix condition when to default to apptype arm9

git-svn-id: trunk@49248 -
svenbarth пре 4 година
родитељ
комит
a19e461ee0
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      compiler/systems/t_nds.pas

+ 1 - 1
compiler/systems/t_nds.pas

@@ -57,7 +57,7 @@ begin
   SharedLibFiles.doubles:=true;
   StaticLibFiles.doubles:=true;
   // set arm9 as default apptype
-  if (apptype <> app_arm9) or (apptype <> app_arm7) then
+  if (apptype <> app_arm9) and (apptype <> app_arm7) then
     apptype:=app_arm9;
 end;