From 0f1f28109f694c9efc86c56f069309fc6a18c15f Mon Sep 17 00:00:00 2001 From: qndel Date: Wed, 18 Sep 2024 08:50:22 +0200 Subject: [PATCH] interuption -> interruption --- src/atomic/SDL_spinlock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/atomic/SDL_spinlock.c b/src/atomic/SDL_spinlock.c index 4a44ad47d4..ad5ba15df6 100644 --- a/src/atomic/SDL_spinlock.c +++ b/src/atomic/SDL_spinlock.c @@ -129,14 +129,14 @@ SDL_bool SDL_TryLockSpinlock(SDL_SpinLock *lock) #elif defined(PS2) uint32_t oldintr; bool res = false; - // disable interuption + // disable interruption oldintr = DIntr(); if (*lock == 0) { *lock = 1; res = true; } - // enable interuption + // enable interruption if (oldintr) { EIntr(); }