sf2ww icon indicating copy to clipboard operation
sf2ww copied to clipboard

A clone of Street Fighter 2 World Warrior, written from scratch in C + OpenGL

Results 4 sf2ww issues
Sort by recently updated
recently updated
newest added

Hi Ben, I think there is a wrong label in playerstate.c (line 1249) : CASetAnim1(ply, STATUS_TURN_AROUND); it should be STATUS_CROUCH_TURN. Thanks, making this c code available is very nice !...

Can you please post build instructions for Ubuntu like cmake, or ./configure ?

help wanted

Anyone tested this? I've patched sf2types.h ```diff diff --git a/FistBlue/sf2types.h b/FistBlue/sf2types.h index 850c90c..96ef487 100644 --- a/FistBlue/sf2types.h +++ b/FistBlue/sf2types.h @@ -27,7 +27,7 @@ #define SF2_CPU_AMD64 #endif -#ifdef __arm__ +#if defined(__arm__) ||...

More reliable to use `#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__`