shithub: cstory

Download patch

ref: e4b120959c66f6b828541a8fba9d58efc0105862
parent: db96e7de94b27ee20b21745b6394fa401a69ef8c
parent: bb829bfc820cb024f52fc79e8b07a46b0cf8baf9
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu May 9 13:59:09 EDT 2019

Merge pull request #26 from Moocow9m/patch-1

Fix DoConfig read

--- a/DoConfig/DoConfig.cpp
+++ b/DoConfig/DoConfig.cpp
@@ -135,7 +135,7 @@
 	for(char i=0;i<8;i++){
 		const unsigned long button = CharsToLong(config.buttons[i]);
 		if(button<9 && button>0){
-			joyRows[i]->value(button -1);
+			joyRows[i]->value(button);
 		}
 	}
 }