mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Build fixed
This commit is contained in:
parent
bbe00f6505
commit
702193a6c7
4 changed files with 11 additions and 7 deletions
|
|
@ -160,7 +160,7 @@ void LogFrame::OnTimer(wxTimerEvent& event)
|
|||
// Parse log level formatting
|
||||
for (std::size_t start = 0, pos = 0;; pos++)
|
||||
{
|
||||
if (text[pos] == L'·')
|
||||
if (pos < text.size() && text[pos] == L'·')
|
||||
{
|
||||
if (text.size() - pos <= 3)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue