Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Commit

Permalink
Trying to fix fastcall with gcc (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
barbudreadmon committed Dec 6, 2017
1 parent 0005781 commit 9bc8280
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/burner/libretro/tchar.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@
#ifndef FASTCALL
#undef __fastcall
#define __fastcall
#else
#ifndef _MSC_VER
#undef __fastcall
#define __fastcall __attribute__((fastcall))
#endif
#endif

#define ANSIToTCHAR(str, foo, bar) (str)
Expand Down

0 comments on commit 9bc8280

Please sign in to comment.