2021-04-28 12:51:23 -04:00
|
|
|
@echo off
|
|
|
|
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set OS=32BIT || set OS=64BIT
|
|
|
|
|
|
|
|
if %OS%==32BIT (
|
2021-04-30 13:06:11 -04:00
|
|
|
Pushd %~dp0\stk-code\build-i686\bin\
|
2021-04-28 12:51:23 -04:00
|
|
|
supertuxkart.exe
|
|
|
|
popd
|
|
|
|
)
|
|
|
|
if %OS%==64BIT (
|
2021-04-30 13:06:11 -04:00
|
|
|
Pushd %~dp0\stk-code\build-x86_64\bin\
|
2021-04-28 12:51:23 -04:00
|
|
|
supertuxkart.exe
|
|
|
|
popd
|
|
|
|
)
|