1
0
Fork 0

make RealHandle inline to silence some unused warnings

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3814
This commit is contained in:
Peter Veenstra 2013-01-27 16:54:22 +00:00
parent 81226995de
commit 556ff13f87

View file

@ -638,7 +638,7 @@ struct DOS_Block {
extern DOS_Block dos;
static Bit8u RealHandle(Bit16u handle) {
static INLINE Bit8u RealHandle(Bit16u handle) {
DOS_PSP psp(dos.psp());
return psp.GetFileHandle(handle);
}