Fix warnings in emucore

This commit is contained in:
Nekotekina Aux1
2020-03-04 17:08:40 +03:00
committed by Nekotekina
parent f2f3321952
commit 250736ece5
48 changed files with 189 additions and 193 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
#include "stdafx.h"
#include "stdafx.h"
#include "TAR.h"
@@ -30,7 +30,7 @@ int octalToDecimal(int octalNumber)
{
rem = octalNumber % 10;
octalNumber /= 10;
decimalNumber += rem * pow(8, i);
decimalNumber += rem * (1 << (i * 3));
++i;
}
return decimalNumber;