mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'fix-video-recorder-crash' into 'master'
Fix random video recorder crash Closes #685 See merge request KartKrew/Kart!2170
This commit is contained in:
commit
ab6c770657
1 changed files with 3 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
// RING RACERS
|
||||
//-----------------------------------------------------------------------------
|
||||
// Copyright (C) 2023 by James Robert Roman
|
||||
// Copyright (C) 2023-2024 by James Robert Roman
|
||||
//
|
||||
// This program is free software distributed under the
|
||||
// terms of the GNU General Public License, version 2.
|
||||
|
|
@ -36,7 +36,8 @@ public:
|
|||
int height() const { return height_; }
|
||||
|
||||
private:
|
||||
int width_, height_;
|
||||
int width_ = 0;
|
||||
int height_ = 0;
|
||||
|
||||
std::vector<uint8_t> vec_;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue