Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/hardware/voodoo.cpp')
-rw-r--r--src/hardware/voodoo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hardware/voodoo.cpp b/src/hardware/voodoo.cpp
index 4e54fac71..1f21a6eb4 100644
--- a/src/hardware/voodoo.cpp
+++ b/src/hardware/voodoo.cpp
@@ -37,7 +37,7 @@
class VOODOO;
static VOODOO* voodoo_dev;
-static Bit32u voodoo_current_lfb=(VOODOO_INITIAL_LFB&0xffff0000);
+static uint32_t voodoo_current_lfb=(VOODOO_INITIAL_LFB&0xffff0000);
class VOODOO:public Module_base{
@@ -157,7 +157,7 @@ void VOODOO_PCI_Enable(bool enable) {
}
-void VOODOO_PCI_SetLFB(Bit32u lfbaddr) {
+void VOODOO_PCI_SetLFB(uint32_t lfbaddr) {
voodoo_current_lfb=(lfbaddr&0xffff0000);
}