This commit is contained in:
DepressedTWM 2026-07-04 22:59:44 +04:00
parent 97a7e7b751
commit e09be0861e
3 changed files with 1 additions and 6 deletions

View file

@ -13,9 +13,6 @@ Testers:
* Rubik * Rubik
* Prime 223432 * Prime 223432
External artists:
* "Ргинша"
Donators: Donators:
* Kodu * Kodu

View file

@ -1,4 +1,3 @@
class Particle class Particle
def initialize(viewport, bitmap) def initialize(viewport, bitmap)
@sprite = Sprite.new(viewport) @sprite = Sprite.new(viewport)
@ -7,7 +6,6 @@ class Particle
@sprite.oy = bitmap.height / 2 @sprite.oy = bitmap.height / 2
self.x = rand(Graphics.width) self.x = rand(Graphics.width)
self.y = rand(Graphics.height) self.y = rand(Graphics.height)
RPG::Mod.exec_hooks("hooks/Particle/main", binding)
end end
# Link various things to the sprite # Link various things to the sprite

View file

@ -137,7 +137,7 @@ void crash(Exception::Type t, const char *fmt, ...){
o << "[Hardware]" << std::endl; o << "[Hardware]" << std::endl;
o << "L1 cache line size: " << SDL_GetCPUCacheLineSize() << std::endl; o << "L1 cache line size: " << SDL_GetCPUCacheLineSize() << std::endl;
o << "number of logical CPU cores: " << SDL_GetNumLogicalCPUCores() << std::endl; o << "number of logical CPU cores: " << SDL_GetNumLogicalCPUCores() << std::endl;
o << "System page size: " << SDL_GetSystemPageSize() << " bytes" << std::endl; //o << "System page size: " << SDL_GetSystemPageSize() << " bytes" << std::endl;
o << "System RAM size: " << SDL_GetSystemRAM() << " MiB" << std::endl; o << "System RAM size: " << SDL_GetSystemRAM() << " MiB" << std::endl;
o.close(); o.close();
}else{ }else{