mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-25 23:11:20 +00:00
Merge branch 'fix-setlinetexture' into 'master'
Fix off-by-one in CallFunc_SetLineTexture See merge request KartKrew/Kart!919
This commit is contained in:
commit
0d8ada50bf
1 changed files with 1 additions and 1 deletions
|
|
@ -783,7 +783,7 @@ bool CallFunc_SetLineTexture(ACSVM::Thread *thread, const ACSVM::Word *argV, ACS
|
|||
texPos = argV[2];
|
||||
|
||||
map = thread->scopeMap;
|
||||
str = map->getString(argV[4]);
|
||||
str = map->getString(argV[3]);
|
||||
texName = str->str;
|
||||
|
||||
texId = R_TextureNumForName(texName);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue