mirror of
https://github.com/mupen64plus/mupen64plus-oldsvn.git
synced 2025-04-02 10:52:35 -04:00
17 lines
177 B
C
17 lines
177 B
C
#ifndef VI_H
|
|
#define VI_H
|
|
#include "Types.h"
|
|
|
|
struct VIInfo
|
|
{
|
|
u32 width, height;
|
|
u32 lastOrigin;
|
|
};
|
|
|
|
extern VIInfo VI;
|
|
|
|
void VI_UpdateSize();
|
|
void VI_UpdateScreen();
|
|
|
|
#endif
|
|
|