Rename vram to vip internally

This commit is contained in:
2025-02-23 22:44:11 -05:00
parent 0ae2a2f54f
commit 6ab9d2ee53
13 changed files with 125 additions and 119 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ use egui::{Context, ViewportBuilder, ViewportId};
pub use game::GameWindow;
pub use gdb::GdbServerWindow;
pub use input::InputWindow;
pub use vram::{
pub use vip::{
BgMapWindow, CharacterDataWindow, FrameBufferWindow, ObjectWindow, RegisterWindow, WorldWindow,
};
use winit::event::KeyEvent;
@@ -16,7 +16,7 @@ mod game_screen;
mod gdb;
mod input;
mod utils;
mod vram;
mod vip;
pub trait AppWindow {
fn viewport_id(&self) -> ViewportId;